home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 2.iso / dist / fw_urt.idb / usr / freeware / bin / rlesize.z / rlesize
Text File  |  1999-01-26  |  307b  |  7 lines

  1. #! /bin/csh -f
  2. # This plucks the size information from the output of the rlehdr program
  3. # and prints it in program readable format.  Useful for:
  4. #    rlebg 255 255 255 -s `rlesize < foo.rle`
  5. # It should probably be an option to rlebox.
  6. rlehdr | sed -n -e "s/^.*size (\([0-9][0-9]*\), \([0-9][0-9]*\))/\1 \2/p"
  7.